home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / info-service / gopher / Unix / gopher1.12 / object / Stdlib.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-12-31  |  1.3 KB  |  44 lines

  1. /********************************************************************
  2.  * $Author: lindner $
  3.  * $Revision: 1.2 $
  4.  * $Date: 1992/12/29 21:00:59 $
  5.  * $Source: /home/mudhoney/GopherSrc/release1.11/object/RCS/Stdlib.h,v $
  6.  * $State: Rel $
  7.  *
  8.  * Paul Lindner, University of Minnesota CIS.
  9.  *
  10.  * Copyright 1991, 1992 by the Regents of the University of Minnesota
  11.  * see the file "Copyright" in the distribution for conditions of use.
  12.  *********************************************************************
  13.  * MODULE: Stdlib.h
  14.  * Include stdlib.h on systems that have it.
  15.  *********************************************************************
  16.  * Revision History:
  17.  * $Log: Stdlib.h,v $
  18.  * Revision 1.2  1992/12/29  21:00:59  lindner
  19.  * Added changes necessary for VMS
  20.  *
  21.  * Revision 1.1  1992/12/10  23:27:52  lindner
  22.  * gopher 1.1 release
  23.  *
  24.  *
  25.  *********************************************************************/
  26.  
  27.  
  28. #if defined (NeXT) || defined(__STDC__)
  29. #  ifndef sony_news   /** Ack! sonynews is STDC but no stdlib! **/
  30. #    include <stdlib.h>
  31. #  endif
  32. #else
  33.  
  34. #  if !defined(mips) && !defined(sequent) && !defined(n16) && !defined(NeXT) &&   !defined(ultrix) && !defined(UMAX43) && !defined(sony_news)
  35.  
  36. #    ifndef VMS
  37. #      include <stdlib.h>
  38. #    else
  39. #      include stdlib
  40. #    endif
  41.  
  42. #  endif
  43. #endif
  44.